home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / Lattice C v5.02 d4.adf / examples / debugger / smain.c < prev    next >
C/C++ Source or Header  |  1988-11-07  |  147b  |  12 lines

  1. int array[10];
  2.  
  3. main()
  4. {
  5.     int i;
  6.  
  7.     init(array);    /* initialize arra[] */
  8.     /* Keep swapping elements until sorted */
  9.     while (sort(array) != 0)
  10.         ;
  11. }
  12.